cody - HTMLify profile

cody
4270 Files
632543 Views
Latest files of /cody/solygambas/html-css-javascript-projects/073-lyrics search app
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');
:root {
--main-color: #3B9B76;
--secondary-color: #5AB193;
--text-color: rgba(255,255,255,0.87);
}
:root {
--main-color: #3B9B76;
--secondary-color: #5AB193;
--text-color: rgba(255,255,255,0.87);
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Lyrics Search</title>
</head>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Lyrics Search</title>
</head>
const form = document.getElementById("form");
const search = document.getElementById("search");
const result = document.getElementById("result");
const more = document.getElementById("more");
const apiURL = "https://api.lyrics.ovh";
async function searchSongs(term) {
const search = document.getElementById("search");
const result = document.getElementById("result");
const more = document.getElementById("more");
const apiURL = "https://api.lyrics.ovh";
async function searchSongs(term) {